home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / asitchintime2.swf / scripts / DefineButton2_1823 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-11-09  |  334 b   |  14 lines

  1. on(release){
  2.    if(c.gamePaused)
  3.    {
  4.       c.gamePaused = false;
  5.       b.broadcastMessage("onPlay");
  6.       btnPause._visible = true;
  7.       btnPlay._visible = false;
  8.       cachePause.gotoAndPlay("close");
  9.       btnQuit._visible = true;
  10.       btnHelp._visible = true;
  11.       s1.gotoAndPlay("music_l" + _root.level);
  12.    }
  13. }
  14.